home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20020314-20021006 / 000224_fdc@columbia.edu_Thu Jul 18 20:16:08 EDT 2002.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  44 lines

  1. Article: 13536 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: telnet
  6. Date: 18 Jul 2002 20:15:39 -0400
  7. Organization: Columbia University
  8. Lines: 27
  9. Message-ID: <ah7lnb$hpk$1@watsol.cc.columbia.edu>
  10. References: <44022a60.0207181549.2e1207a9@posting.google.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1027037741 25861 128.59.39.139 (19 Jul 2002 00:15:41 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 19 Jul 2002 00:15:41 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13536
  16.  
  17. In article <44022a60.0207181549.2e1207a9@posting.google.com>,
  18. tgilber1 <tgilber1@netscape.net> wrote:
  19. : I have alarms messages coming from remote units that only use telnet
  20. : protocol.  Is there anyway I could use c-kermit?  In the c-kermit
  21. : manual I just purchased, it states that c-kermit is not a telnet
  22. : server (c-kermit 6.0).
  23. :
  24. Not in the sense of telnetd.  But it can accept incoming telnet connections:
  25.  
  26.   set host * 23
  27.  
  28. tells it to wait for an incoming connection.  You can also have it wait on
  29. any other port:
  30.  
  31.   set host * 3000 /telnet
  32.  
  33. The /telnet switch should be included when specifying a non-Telnet port,
  34. but you still want it to do Telnet protocol negotiations.
  35.  
  36. Once a connection arrives, you can use the regular scripting techniques
  37. described in the manual and here:
  38.  
  39.   http://www.columbia.edu/kermit/ckscripts.html
  40.  
  41. to process the messages.
  42.  
  43. - Frank
  44.